home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / HENSA / MISC / SHELL.ARC / Shell / h / ArrayLabel < prev    next >
Encoding:
Text File  |  1994-04-09  |  616 b   |  40 lines

  1. #ifndef __Shell_ArrayLabel_h
  2. #define __Shell_ArrayLabel_h
  3.  
  4. #ifndef __Shell_h
  5. #include "Shell.Shell.h"
  6. #endif
  7.  
  8.  
  9.  
  10. Shell_rectblock    *Shell_Add2DDoubleArrayLabel( 
  11.     Shell_windblock    *w, 
  12.     int        x, 
  13.     int        y, 
  14.     int        xsize, 
  15.     int        ysize,
  16.     int        forecol, 
  17.     int        backcol, 
  18.     double        **data, 
  19.     char        *text
  20.     );
  21.     
  22.     /* This is identical to Shell_Add2DDoubleArray, except it also    */
  23.     /* adds a font-label above the array, with contents 'text'.    */
  24.  
  25.  
  26.  
  27. Shell_rectblock *Shell_AddDoubleVerticalVectorLabel(
  28.     Shell_windblock    *wind, 
  29.     int        x, 
  30.     int        y, 
  31.     int        size, 
  32.     int        forecol, 
  33.     int        backcol, 
  34.     double        *data,
  35.     char        *text
  36.     );
  37.  
  38.  
  39. #endif
  40.